REVERSES the order of a given string!!! - Enhanced Version Ex: Apple => elppA
REVERSES the order of a given string!!! - Enhanced Version Ex: Apple => elppA
Rate REVERSES the order of a given string!!! - Enhanced Version Ex: Apple => elppA
(1(1 Vote))
Dim newString As String, xCount As Integer
newString = ""
For xCount = 1 To Len(thisString)
newString = newString & Left(Right(thisString, xCount), 1)
Next xCount
reverseString = newString
End Function
REVERSES the order of a given string!!! - Enhanced Version Ex: Apple => elppA Comments
No comments yet — be the first to post one!
Post a Comment